MCP Task Manager Server_expandTask
Break down a parent task into subtasks by providing descriptions, project ID, and parent task ID. Optionally replace existing subtasks using the 'force' flag.
Instructions
Breaks down a specified parent task into multiple subtasks based on provided descriptions. Requires the project ID, the parent task ID, and an array of descriptions for the new subtasks. Optionally allows forcing the replacement of existing subtasks using the 'force' flag. Returns the updated parent task details, including the newly created subtasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force | No | Optional flag (default false). If true, any existing subtasks of the parent task will be deleted before creating the new ones. If false and subtasks exist, the operation will fail. | |
project_id | Yes | The unique identifier (UUID) of the project containing the parent task. | |
subtask_descriptions | Yes | An array of descriptions (1-20) for the new subtasks to be created under the parent task. | |
task_id | Yes | The unique identifier of the parent task to be expanded. |